home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / gnu_oleo_1_2_2.lha / oleo-1.2.2 / io-edit.h < prev    next >
C/C++ Source or Header  |  1993-03-03  |  1KB  |  46 lines

  1. #ifndef IO_EDITH
  2. #define IO_EDITH
  3.  
  4. /*    Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this software; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include "cmd.h"
  21.  
  22. /* These must agree with the order of functions in edit_funcs.  */
  23. #define L_TOGGLE_OVER     0
  24. #define L_BEG_LINE     1
  25. #define L_END_LINE     2
  26. #define L_BK_CHR     3
  27. #define L_BK_WORD     4
  28. #define L_BK_DEL_CHR     5
  29. #define L_BK_DEL_WORD     6
  30. #define L_BK_DEL_END     7
  31. #define L_FW_CHR     8
  32. #define L_FW_WORD     9
  33. #define L_FW_DEL_CHR    10
  34. #define L_FW_DEL_WORD    11
  35. #define L_FW_DEL_END    12
  36. #define L_FINISH    13
  37. #define L_INS_EXPR    14
  38. #define L_INS_VAL    15
  39. #define L_INS_REL    16
  40. #define L_INS_ABS    17
  41. #define L_INS_CHR    18
  42.  
  43. extern struct cmd_func edit_funcs[];
  44.  
  45. #endif
  46.